Skip to content

Instantly share code, notes, and snippets.

@jennynz
jennynz / bots.py
Created June 22, 2022 02:05
Filtering out bots from GitHub data
# List of common bots on GitHub
# Doesn't include ones that would already be filtered out by the is_bot function
# but it won't hurt to also include them in here
GITHUB_BOTS = [
'netlify',
'linear-app',
'codeclimate',
'renovate',
'renovate-approve',

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

-- ============================================
-- SAN AURIE PRO V8 - CORREÇÕES FINAIS
-- ============================================
local Players = game:GetService("Players")
local Input = game:GetService("VirtualInputManager")
local UIS = game:GetService("UserInputService")
local LocalPlayer = Players.LocalPlayer
local RunService = game:GetService("RunService")
local ParentGui = game:GetService("CoreGui") or LocalPlayer:WaitForChild("PlayerGui")
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 5, 2026 16:43
Conventional Commits Cheatsheet
@ryan337
ryan337 / Canais.m3u
Created December 11, 2017 13:40
Canais.m3u
#EXTM3U
#EXTINF:-1 tvg-id="Globorj.br" tvg-name="GLOBO RJ FULL HD" tvg-logo="https://2.bp.blogspot.com/-wHhXOFoqjAE/Wg7x8KwqO_I/AAAAAAAABHI/WltMl3al1DgIWQRMEvqBc05s5OhXIJdsgCPcBGAYYCw/s1600/globorj.png" group-title="CANAIS GLOBO",GLOBO RJ FULL HD
http://srv.elitehdbr.com:25461/live/Gdnbd/DvzHEMwqfR/4796.ts
#EXTINF:-1 tvg-id="Globorj.br" tvg-name="GLOBO RJ FULL HD*" tvg-logo="https://2.bp.blogspot.com/-wHhXOFoqjAE/Wg7x8KwqO_I/AAAAAAAABHI/WltMl3al1DgIWQRMEvqBc05s5OhXIJdsgCPcBGAYYCw/s1600/globorj.png" group-title="CANAIS GLOBO",GLOBO RJ FULL HD*
http://srv.elitehdbr.com:25461/live/Gdnbd/DvzHEMwqfR/2824.ts
#EXTINF:-1 tvg-id="GloboAnhangueraGoias.br" tvg-name="GLOBO ANHANGUERA FULL HD" tvg-logo="https://2.bp.blogspot.com/-Dtjjva3T820/Wg7yFGLSh8I/AAAAAAAABJE/wKZZ5R_XkEkVZ-HvR0JW51iUD_FOvv0ZgCPcBGAYYCw/s1600/tv_anhanguera.png" group-title="CANAIS GLOBO",GLOBO ANHANGUERA FULL HD
http://srv.elitehdbr.com:25461/live/Gdnbd/DvzHEMwqfR/3294.ts
#EXTINF:-1 tvg-id="GloboGazetaES.br" tvg-name="GLOBO GAZETA ES FULL HD" tvg-log
@jedieaston
jedieaston / Install-WinGet.ps1
Last active July 5, 2026 16:41
Install WinGet (.ps1)! (on x64 systems)
$ErrorActionPreference = "Stop"
$apiLatestUrl = 'https://api.github.com/repos/microsoft/winget-cli/releases/latest'
$tempFolder = $env:TEMP
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$WebClient = New-Object System.Net.WebClient
function Update-EnvironmentVariables {
foreach($level in "Machine","User") {
@mvaisakh
mvaisakh / Bringup.md
Last active July 5, 2026 16:40
An Android Device Tree Bringup Guide

A small Device Tree Bringup Guide

Introduction

So, you guys might be wondering, how do these "Developers" get your favourite Custom roms, such as LineageOS, Paranoid Android etc., to their own devices. Well I'm here to Guide you on how to do it, specifically on how to bringup or make your own device tree from scratch or adapting.

Gist of this Guide: This is for people with genuine interest in Android OS porting/development. After going through this guide, you should be able to do a total device tree bringup on your own.

Prerequisite: Certain requirements are to be met before you start with this amazing journey.